# Makefile
FLAGS = -g -std=c99 -Wall

all:	sizeof

sizeof:	sizeof.c
	gcc ${FLAGS} sizeof.c -o sizeof

clean:	
	rm -f sizeof
